
.burger{

	z-index:9999;
	cursor: pointer;
	transform: rotateY(0);	
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger-patty:last-child{
	margin-bottom: 0;
}

.burger-close{
	transform: rotate(0deg);
}
.burger-close .burger-patty:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-close .burger-patty:nth-child(2){
	opacity: 0;
}
.burger-close .burger-patty:nth-child(3){
	transform: rotate(-45deg) translate(6px, -6px);
}
@media screen and (min-width: 1201px) {
	.menu-banner, .menu-list{
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	justify-self:center;
	float:left;
	width:50%;
	height:100vh;
	overflow: hidden;
}

.menu-banner{
	background: #fff;
	display: flex;
	justify-content: center;
	text-align: center;
	transform: translate3d(0, 100%, 0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
}
	@media screen and (max-width: 1200px) {
		
		.menu-banner{
	background: #fff;
	display:none;
	justify-content: center;
	text-align: center;
	transform: translate3d(0, 100%, 0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
}
	}
.menu-list{
	display: flex; padding:0;
	
}
	.menu-list .menu-item:before{	display: block;}
}

	.menu-list .menu-item:before{
	position: absolute;
	bottom:0;
	left: calc(50% - 6px);
	content: "";

	width:12px;
	height:2px;
	background: #fff;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.23, 1);
}

.menu-list{align-items: center;
	justify-content: center;
	margin:0;
	
	background:#1a4499;
	transform: translate3d(0, -100%, 0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);}
.menu{
	position: fixed;
	top:0;
	width:100%;
	visibility: hidden;
}

.menu-list .menu-item{
	position:relative;
	transform: translateX(50vw);
	transition: all calc(0.4s + var(--i)*0.2s) 0.4s cubic-bezier(0.23, 1, 0.23, 1);
}

.menu-list .menu-item a{
	font-size: 1.4em;
	line-height: 2.6em;
}

.menu-list .menu-item:hover:before{
	width:100%;
	left: 0;
}



.menu-action{
	visibility: visible;
}
.menu-action .menu-banner{
	transform: translate3d(0, 0, 0);
}
.menu-action .menu-list{
	transform: translate3d(0, 0, 0);
}
.menu-action .menu-list .menu-item{
	transform: translateX(0);
}

main{
	background: url(../imgs/1.jpg);
	background-size: cover;
	display: flex;
	width:100%;
	height:100vh;
	align-items: center;
	flex-wrap: wrap;
	padding:0 3em;
}
main h2, main h3{
	width:35%;
	font-size:16px;
}
main h2{
	font-size: 3em;
	line-height: auto;
	font-weight: bold;
	margin-bottom: 0.6em;
}
main h3{
	line-height:32px;
}


@media screen and (max-width:850px) {
	main h2, main h3{
		width: 100%;
	}
}